home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / power302.zip / WINSTALL.BAT < prev   
DOS Batch File  |  1992-11-12  |  604b  |  27 lines

  1. @echo off
  2.  
  3. rem (c) Copyright 1992
  4. rem Colorado Memory Systems inc.,
  5. rem All Rights Reserved.
  6.  
  7. rem *** Run the Install software ***
  8. install.exe %3 %4 F
  9.  
  10. rem *** Check the exit code on the install. If success the exit code = 0;
  11. rem *** otherwise the exit code is some number greater than 0;
  12. rem *** if the error code is greater that 0 create a file called
  13. rem *** 'error.out' with the number 1 in it.
  14.  
  15. if not errorlevel 1 goto exit
  16.  
  17. rem *** Change Drive to the install drive ***
  18. %1:
  19.  
  20. rem *** Change Directory to the install directory ***
  21. cd %2
  22.  
  23. echo 1 > error.out
  24.  
  25. :exit
  26. @echo on
  27.